// This file contains strings used by the WorldEdit module in the game.
// If the string never gets used in the game application, it should be placed
// in WorldEditStrings.txt to save on game memory usage.

[WorldEditStrings]

// Tile set names
WESTRING_LOCALE_LORDAERON_SUMMER=Lordaeron Summer
WESTRING_LOCALE_LORDAERON_FALL=Lordaeron Fall
WESTRING_LOCALE_LORDAERON_WINTER=Lordaeron Winter
WESTRING_LOCALE_BARRENS=Barrens
WESTRING_LOCALE_ASHENVALE=Ashenvale
WESTRING_LOCALE_FELWOOD=Felwood
WESTRING_LOCALE_NORTHREND=Northrend
WESTRING_LOCALE_CITYSCAPE=Cityscape
WESTRING_LOCALE_VILLAGE=Village
WESTRING_LOCALE_VILLAGEFALL=Village Fall
WESTRING_LOCALE_DUNGEON=Dungeon
WESTRING_LOCALE_DUNGEON2=Underground
WESTRING_LOCALE_DALARAN=Dalaran

// Map size descriptions
WESTRING_MAPSIZE_TINY=Tiny
WESTRING_MAPSIZE_SMALL=Small
WESTRING_MAPSIZE_MEDIUM=Medium
WESTRING_MAPSIZE_LARGE=Large
WESTRING_MAPSIZE_HUGE=Huge
WESTRING_MAPSIZE_EPIC=Epic

// Map info defaults
WESTRING_DEFAULT_MAPNAME=Just another Warcraft III map
WESTRING_DEFAULT_MAPDESC=Nondescript
WESTRING_UNKNOWN=Unknown
WESTRING_DEFAULT_MAPAUTHOR=WESTRING_UNKNOWN
WESTRING_DEFAULT_MAPSUGGESTEDPLAYERS=Any
WESTRING_PLAYER=Player
WESTRING_FORCE=Force

// Errors and warnings
WESTRING_ERROR=Error
WESTRING_ERROR_NOTEXTURE=Could not load texture
WESTRING_ERROR_NOFILE=Could not load file
WESTRING_ERROR_BADSHADOWMAP=Invalid shadow map file
WESTRING_ERROR_BADOBJECTID=Invalid object ID

WESTRING_WARNING=Warning
WESTRING_WARNING_BADWEATHEREFFECT=Invalid weather effect handle
WESTRING_WARNING_MISSINGSTRING=Missing string
WESTRING_WARNING_INVALIDTEXTUREID=Invalid texture ID

// Script errors
WESTRING_SCRIPTERRORS=Script Errors
WESTRING_SCRIPTCOMPILEERROR=Script Compile Error
WESTRING_SCRIPT_LINE=Line
WESTRING_SCRIPTERR_OK=Error code missing
WESTRING_SCRIPTERR_UNKNOWN=Unknown compile error
WESTRING_SCRIPTERR_SYNTAX=Syntax error
WESTRING_SCRIPTERR_SEMICOLON=Unexpected ';'
WESTRING_SCRIPTERR_EXP_COMMA=Expected ','
WESTRING_SCRIPTERR_EXP_COMMA_RETURNS=Expected ',' or 'returns' in parameter list
WESTRING_SCRIPTERR_EXP_EXPR=Expected expression
WESTRING_SCRIPTERR_EXP_LBRACE=Expected '['
WESTRING_SCRIPTERR_EXP_RBRACE=Expected ']'
WESTRING_SCRIPTERR_EXP_LPAREN=Expected '('
WESTRING_SCRIPTERR_EXP_RPAREN=Expected ')'
WESTRING_SCRIPTERR_EXP_EQUALS=Expected '='
WESTRING_SCRIPTERR_EXP_ENDLINE=Expected end of line
WESTRING_SCRIPTERR_EXP_INDEX=Expected array index
WESTRING_SCRIPTERR_EXP_BLOCK=Expected a block of code
WESTRING_SCRIPTERR_EXP_ENDLOOP=Expected 'endloop'
WESTRING_SCRIPTERR_EXP_STATEMENT=Expected a code statement
WESTRING_SCRIPTERR_EXP_THEN=Expected 'then'
WESTRING_SCRIPTERR_EXP_EXTENDS=Expected 'extends'
WESTRING_SCRIPTERR_EXP_TAKES=Expected 'takes'
WESTRING_SCRIPTERR_EXP_RETURNS=Expected 'returns'
WESTRING_SCRIPTERR_EXP_FUNCTION=Expected 'function'
WESTRING_SCRIPTERR_EXP_ARGLIST=Expected a valid argument list
WESTRING_SCRIPTERR_EXP_PARAMS=Expected a valid parameter list
WESTRING_SCRIPTERR_EXP_SET=Expected 'set'
WESTRING_SCRIPTERR_EXP_TYPE=Expected a reserved type or handle type
WESTRING_SCRIPTERR_EXP_CALL=Expected 'call'
WESTRING_SCRIPTERR_EXP_COMPARE=Expected '=='
WESTRING_SCRIPTERR_EXP_ENDIF=Expected 'endif'
WESTRING_SCRIPTERR_EXP_UNKNOWN_NAME=Expected a name
WESTRING_SCRIPTERR_EXP_FUNC_NAME=Expected a function name
WESTRING_SCRIPTERR_EXP_VAR_NAME=Expected a variable name
WESTRING_SCRIPTERR_EXP_HANDLE_NAME=Expected a handle name
WESTRING_SCRIPTERR_EXP_KNOWN_NAME=Expected a name
WESTRING_SCRIPTERR_NO_NATIVE_FUNC=Unregistered native function
WESTRING_SCRIPTERR_ARG_TYPE=Invalid argument type
WESTRING_SCRIPTERR_ARG_COUNT=Invalid number of arguments
WESTRING_SCRIPTERR_NATIVE_MISMATCH=Native declaration doesn't match registered version
WESTRING_SCRIPTERR_NEED_RETURN=Need return value in function
WESTRING_SCRIPTERR_VOID_RETURN=Unexpected return in 'returns nothing' function
WESTRING_SCRIPTERR_TYPE_MISMATCH=Type mismatch in assignment
WESTRING_SCRIPTERR_EXPR_TYPE=Invalid type for specified operator
WESTRING_SCRIPTERR_SET_CONST=Attempt to set a constant variable
WESTRING_SCRIPTERR_NON_CONST_CALL=Constant function is being called from a non-constant function
WESTRING_SCRIPTERR_SET_CONST_CALL=Variable set in a constant function
WESTRING_SCRIPTERR_NOT_ORDINAL=Invalid array index
WESTRING_SCRIPTERR_NOT_ARRAY=Attempt to index a non-array variable
WESTRING_SCRIPTERR_EXITWHEN=Unexpected 'exitwhen'
WESTRING_SCRIPTERR_NO_CONST_ARRAY=Arrays cannot be constant
